Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@contentful/app-scripts

Package Overview
Dependencies
Maintainers
99
Versions
511
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contentful/app-scripts

A collection of scripts for building Contentful Apps

  • 0.8.49
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
increased by19.26%
Maintainers
99
Weekly downloads
 
Created
Source

@contentful/app-scripts

This project makes easy to perform some recurrent operations in Contentful's App Framework.

📥 Installation

Locally:

npm i --save @contentful/app-scripts

Globally:

npm i -g @contentful/app-scripts

⚙️ Usage

💻 CLI

When installed

$ contentful-app-scripts create-app-definition 

Otherwise

$ npx --no-install @contentful/app-scripts create-app-definition 

👨‍💻 Programmatic

// my-script.js

const { createAppDefinition } = require('@contentful/app-scripts')
const { myCustomLogic } = require('./my-custom-logic')

(async function main() {
  myCustomLogic();

  await createAppDefinition.interactive()
})()

📜 API

Scripts exported from this module will all be in the following shape

interface Script<Result, Options> {
  // query the user or local cache for required information
  interactive: () => Result;
  // run by automation (`--ci` flag), they would need all the information upfront
  nonInteractive: (...options: Options) => Result;
}

:warning: Please note

Both interactive and nonInteractive version of the same script is meant to return the same result.

Create App Definition

Allows creating a new AppDefinition provided a Content Management Token (more details here).

It only runs in interactive mode.

Example

$ npx --no-install @contentful/app-scripts create-app-definition

Upload a bundle to an App Definition

Allows you to upload a build directory and create a new AppBundle that is bound to an AppDefinition. It runs in interactive or non-interactive mode

Note: The command will automatically activate the bundle. To skip the activation you can pass the --skip-activation argument in interactive and non-interactive mode and then manually activate it

Interactive mode:

In the interactive mode, the CLI will ask for all required options

Example

$ npx --no-install @contentful/app-scripts upload
Non-interactive mode:

When passing the --ci argument the command will fail when the required variables are not set as arguments.

Example

$ npx --no-install @contentful/app-scripts upload --ci \
    --bundle-dir ./built \
    --organization-id some-org-id \ 
    --definition-id some-app-def-id \ 
    --token $MY_CONTENTFUL_PAT

Options:

ArgumentDescription
--bundle-dirThe directory of your build folder (e.g.: ./build)
--organization-idThe ID of your organisation
--definition-idThe ID of the app to which to add the bundle
--tokenA personal access token
--skip-activation(optional) Boolean flag to skip the automatic activation of the AppBundle

Note: You can also pass all arguments in interactive mode to skip being asked for it.

Activate an AppBundle

Allows you to activate an AppBundle for an AppDefinition. When activated the app will serve the newly activated AppBundle.

Interactive mode:

In the interactive mode, the CLI will ask for all required options

Example

$ npx --no-install @contentful/app-scripts activate
Non-interactive mode:

When passing the --ci argument adding all variables as arguments is required

Example

$ npx --no-install @contentful/app-scripts activate --ci \
    --bundle-id some-bundle-id \
    --organization-id some-org-id \ 
    --definition-id some-app-def-id \ 
    --token $MY_CONTENTFUL_PAT

Options:

ArgumentDescription
--bundle-idThe ID of the AppBundle you want to activate
--organization-idThe ID of your organisation
--definition-idThe ID of the app to which to add the bundle
--tokenA personal access token

Note: You can also pass all arguments in interactive mode to skip being asked for it.

FAQs

Package last updated on 01 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc